home *** CD-ROM | disk | FTP | other *** search
- <%
- Set Conn = Server.CreateObject("ADODB.Connection")
- Conn.Open "dopl≥te_nßzev_spojenφ"
- SQL = "SELECT * FROM dopl≥te_nßzev_tabulky order by dopl≥te_nßzev_t°φdφcφho_pole"
- Set RS = Conn.Execute(SQL)
- %>
-
- <HTML>
- <HEAD>
- <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1250">
- <META name="GENERATOR" content="EasyPad from http://easypad.fwd.cz">
- <TITLE>!!! doplnit !!!</TITLE>
- </HEAD>
-
-
- <BODY bgcolor="White" text="Black">
-
- <TABLE border="0">
- <TR><!-- hlaviΦka tabulky vytvo°enß z nßzv∙ polφ -->
- <%
- For i = 0 to RS.Fields.Count - 1
- Response.Write "<TD><B>" & RS(i).Name & "</B></TD>"
- Next
- %>
- </TR>
-
- <% Do while not (RS is nothing) %>
- <% Do While Not RS.EOF %>
-
- <TR>
- <%
- For i = 0 to RS.Fields.Count - 1
- Response.Write "<TD>" & RS(i) & "</TD>"
- Next
- %>
- </TR>
- <%
- RS.MoveNext
- Loop
- %>
-
- <%
- set RS = RS.NextRecordSet
- Loop
- Conn.Close
- set rs = nothing
- set Conn = nothing
- %>
- </TABLE>
-
- </BODY>
- </HTML>
-